web3.js@0.2x.x web3.toAscii
web3.toAscii(hexString)
Hex (16進数) フォーマットの文字列を ASCII 文字列に変換します。
パラメータ
String
Hex (16進数) フォーマットの文字列
戻り値
String
ASCII 文字列
サンプルコード
code:example.js
var str = web3.toAscii("0x657468657265756d000000000000000000000000000000000000000000000000");
console.log(str); // "ethereum"
動作サンプル
参考